#imgnews {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-top: 60px;
}

#newstitle {
    font-size: 40px;
    margin-top: 20px;
    margin-left: 45%;
    color: black;
}

#introtextblock {
    margin-top: 50px;
    color: black;
    background-color: rgba(133, 127, 127, 0);
    font-size: larger;
    margin-left: 10%;
    margin-right: 10%;
}



#articlesbox {
    margin: auto;
    margin-top: 50px;
    width: 90%;
    min-height: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2%;
}

.nb {
    width: 400px;
    height: fit-content;
    background-color: rgb(200, 200, 200);
    border-radius: 20px;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    padding-bottom: 2px;
    color: black;
    transition: 1.5s;
    margin-bottom: 5%;
}

.nb:hover {
    scale: 1.03;
    cursor: pointer;
}

.nb:hover #ulnb {
    width: 90%;
}

.nimg {
    margin: 5%;
    margin-top: 10px;
    border-radius: 20px;
    width: 90%;
    max-height: 200px;
    object-fit: cover;

}

.ntitle {
    margin: 5%;
    margin-top: 0%;
    margin-bottom: 5%;
    color: black;
}

#ulnb {
    width: 0%;
    margin: 5%;
    margin-top: 2%;
    background-color: #1F2838;
    height: 4px;
    border-radius: 2px;
    transition: 1.5s;
} 